float type, the one with DBL_ to double and the one with LDBL_ to long double.| name | min. | stands for | expresses | 
|---|---|---|---|
| FLT_RADIX | 2 | RADIX | Base for all floating-point types ( float,doubleandlong double). | 
| FLT_MANT_DIG DBL_MANT_DIG LDBL_MANT_DIG | MANTissa DIGits | Precission of significand, i.e. the number of digits that conform the significand. | |
| FLT_DIG DBL_DIG LDBL_DIG | 6 10 10 | DIGits | Number of decimal digits that can be rounded into a floating-point and back without change in the number of decimal digits. | 
| FLT_MIN_EXP DBL_MIN_EXP LDBL_MIN_EXP | MINimum EXPonent | Minimum negative integer value for the exponent that generates a normalized floating-point number. | |
| FLT_MIN_10_EXP DBL_MIN_10_EXP LDBL_MIN_10_EXP | -37-37-37 | MINimum base-10 EXPonent | Minimum negative integer value for the exponent of a base-10 expression that would generate a normalized floating-point number. | 
| FLT_MAX_EXP DBL_MAX_EXP LDBL_MAX_EXP | MAXimum EXPonent | Maximum integer value for the exponent that generates a normalized floating-point number. | |
| FLT_MAX_10_EXP DBL_MAX_10_EXP LDBL_MAX_10_EXP | 373737 | MAXimum base-10 EXPonent | Maximum integer value for the exponent of a base-10 expression that would generate a normalized floating-point number. | 
| FLT_MAX DBL_MAX LDBL_MAX | 1E+371E+371E+37 | MAXimum | Maximum finite representable floating-point number. | 
| FLT_EPSILON DBL_EPSILON LDBL_EPSILON | 1E-51E-91E-9 | EPSILON | Difference between 1 and the least value greater than 1 that is representable. | 
| FLT_MIN DBL_MIN LDBL_MIN | 1E-371E-371E-37 | MINimum | Minimum representable floating-point number. | 
| FLT_ROUNDS | ROUND | Rounding behavior.  Possible values: -1undetermined 0toward zero 1to nearest 2toward positive infinity 3toward negative infinityApplies to all floating-point types ( float,doubleandlong double). | |
| FLT_EVAL_METHOD | EVALuation METHOD | Properties of the evaluation format.  Possible values: -1undetermined 0evaluate just to the range and precision of the type 1evaluatefloatanddoubleasdouble, andlong doubleaslong double. 2evaluate all aslong doubleOther negative values indicate an implementation-defined behavior.Applies to all floating-point types ( float,doubleandlong double). | |
| DECIMAL_DIG | DECIMAL DIGits | Number of decimal digits that can be rounded into a floating-point type and back again to the same decimal digits, without loss in precision. |